home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / graphics / tiff / tools / Makefile.sgi < prev    next >
Makefile  |  1992-02-18  |  5KB  |  155 lines

  1. #    $Header: /usr/people/sam/tiff/tools/RCS/Makefile.sgi,v 1.24 92/02/19 14:38:15 sam Exp $
  2. #
  3. # TIFF Library Tools
  4. #
  5. # Copyright (c) 1988, 1989, 1990, 1991, 1992 Sam Leffler
  6. # Copyright (c) 1991, 1992 Silicon Graphics, Inc.
  7. # Permission to use, copy, modify, distribute, and sell this software and 
  8. # its documentation for any purpose is hereby granted without fee, provided
  9. # that (i) the above copyright notices and this permission notice appear in
  10. # all copies of the software and related documentation, and (ii) the names of
  11. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  12. # publicity relating to the software without the specific, prior written
  13. # permission of Stanford and Silicon Graphics.
  14. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  18. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  21. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  22. # OF THIS SOFTWARE.
  23. #
  24. NULL=
  25. IPATH=    -I../libtiff
  26. #
  27. # If you don't want the public domain getopt code, then
  28. # simply null this out and you'll get whatever is in your
  29. # libc (or similar).
  30. #
  31. GETOPT=    getopt.o
  32. #
  33. # Library-wide configuration defines:
  34. #    MMAP_SUPPORT    add support for memory mapping read-only files
  35. #    COLORIMETRY_SUPPORT add support for 6.0 colorimetry tags
  36. #    JPEG_SUPPORT    add support for 6.0 JPEG tags & JPEG algorithms
  37. #    YCBCR_SUPPORT    add support for 6.0 YCbCr tags
  38. #    CMYK_SUPPORT    add support for 6.0 CMYK tags
  39. #
  40. # Note that if you change the library-wide configuration, you'll
  41. # need to manual force a full rebuild. 
  42. #
  43. CONF_LIBRARY=\
  44.     -DUSE_VARARGS=0 \
  45.     -DUSE_PROTOTYPES=1 \
  46.     -DCOLORIMETRY_SUPPORT \
  47.     -DJPEG_SUPPORT \
  48.     -DYCBCR_SUPPORT \
  49.     -DCMYK_SUPPORT \
  50.     -DMMAP_SUPPORT \
  51.     ${NULL}
  52. COPTS=    
  53. CFLAGS=    -O -ansi ${COPTS} ${IPATH}
  54. #
  55. LIBTIFF=../libtiff/libtiff.a
  56. LIBS=    ${LIBTIFF} -lbsd
  57. MACHALL=ras2tiff tiffgt tiffsv sgi2tiff        # these exist on the SGI
  58. OBJS=    \
  59.     fax2tiff.o \
  60.     gif2tiff.o \
  61.     pal2rgb.o \
  62.     ppm2tiff.o \
  63.     rgb2ycbcr.o \
  64.     tiff2bw.o \
  65.     tiff2ps.o \
  66.     tiffcmp.o \
  67.     tiffcp.o \
  68.     tiffdither.o \
  69.     tiffdump.o \
  70.     tiffinfo.o \
  71.     tiffmedian.o \
  72.     tiffsplit.o \
  73.     ras2tiff.o \
  74.     sgigt.o \
  75.     sgisv.o \
  76.     sgi2tiff.o \
  77.     ${GETOPT} \
  78.     ${NULL}
  79. ALL=\
  80.     fax2tiff \
  81.     gif2tiff \
  82.     pal2rgb \
  83.     ppm2tiff \
  84.     rgb2ycbcr \
  85.     tiff2bw \
  86.     tiff2ps \
  87.     tiffcmp \
  88.     tiffcp \
  89.     tiffdither \
  90.     tiffdump \
  91.     tiffinfo \
  92.     tiffmedian \
  93.     tiffsplit \
  94.     ${MACHALL} \
  95.     ${NULL}
  96.  
  97. all:     ${ALL}
  98.  
  99. tiffinfo: tiffinfo.c ${GETOPT} ${LIBTIFF}
  100.     ${CC} -o tiffinfo ${CFLAGS} tiffinfo.c ${GETOPT} ${LIBS}
  101. tiffcmp:tiffcmp.c ${GETOPT} ${LIBTIFF}
  102.     ${CC} -o tiffcmp ${CFLAGS} tiffcmp.c ${GETOPT} ${LIBS}
  103. tiffcp:    tiffcp.c ${LIBTIFF}
  104.     ${CC} -o tiffcp ${CFLAGS} tiffcp.c ${LIBS}
  105. tiffdump: tiffdump.c
  106.     ${CC} -o tiffdump ${CFLAGS} tiffdump.c
  107. tiffmedian: tiffmedian.c ${LIBTIFF}
  108.     ${CC} -o tiffmedian ${CFLAGS} tiffmedian.c ${LIBS}
  109. tiffsplit: tiffsplit.c ${LIBTIFF}
  110.     ${CC} -o tiffsplit ${CFLAGS} tiffsplit.c ${LIBS}
  111. tiff2ps: tiff2ps.c ${LIBTIFF}
  112.     ${CC} -o tiff2ps ${CFLAGS} tiff2ps.c ${LIBS} -lm
  113. # junky stuff...
  114. # convert RGB image to B&W
  115. tiff2bw: tiff2bw.c ${GETOPT} ${LIBTIFF}
  116.     ${CC} -o tiff2bw ${CFLAGS} tiff2bw.c ${GETOPT} ${LIBS}
  117. # convert B&W image to bilevel w/ FS dithering
  118. tiffdither: tiffdither.c ${GETOPT} ${LIBTIFF}
  119.     ${CC} -o tiffdither ${CFLAGS} tiffdither.c ${GETOPT} ${LIBS}
  120. # Sun rasterfile converter
  121. ras2tiff: ras2tiff.c ${LIBTIFF}
  122.     ${CC} -o ras2tiff ${CFLAGS} ras2tiff.c ${LIBS}
  123. # GIF converter
  124. gif2tiff: gif2tiff.c ${LIBTIFF}
  125.     ${CC} -o gif2tiff ${CFLAGS} gif2tiff.c ${LIBS} -lm
  126. # PBM converter
  127. ppm2tiff: ppm2tiff.c ${LIBTIFF}
  128.     ${CC} -o ppm2tiff ${CFLAGS} ppm2tiff.c ${LIBS}
  129. # SGI image file converter
  130. sgi2tiff: sgi2tiff.c ${LIBTIFF}
  131.     ${CC} -o sgi2tiff ${CFLAGS} sgi2tiff.c -limage ${LIBS}
  132. # Group 3 FAX file converter
  133. fax2tiff: fax2tiff.c ${GETOPT} ${LIBTIFF}
  134.     ${CC} -o fax2tiff ${CFLAGS} ${CONF_LIBRARY} fax2tiff.c ${GETOPT} ${LIBS}
  135. # convert Palette image to RGB
  136. pal2rgb: pal2rgb.c ${LIBTIFF}
  137.     ${CC} -o pal2rgb ${CFLAGS} pal2rgb.c ${LIBS}
  138. # convert RGB image to YCbCr
  139. rgb2ycbcr: rgb2ycbcr.c ${GETOPT} ${LIBTIFF}
  140.     ${CC} -o rgb2ycbcr ${CFLAGS} rgb2ycbcr.c ${GETOPT} ${LIBS} -lm
  141. # SGI versions of tiffgt & tiffsv
  142. tiffgt:    sgigt.c ${GETOPT} ${LIBTIFF}
  143.     ${CC} -o tiffgt ${CFLAGS} sgigt.c ${GETOPT} ${LIBS} -lgutil -lgl_s -lm
  144. tiffsv:    sgisv.c ${LIBTIFF}
  145.     ${CC} -o tiffsv ${CFLAGS} sgisv.c ${LIBS} -lgutil -lgl_s -lm
  146.  
  147. install: all
  148.     /etc/install -f /usr/local/bin -m 755 -O ${ALL}
  149.  
  150. clean:
  151.     rm -f ${ALL} ${OBJS} core a.out ycbcr
  152.